06. Project Starter Repository
Project Starter Repository
In the next video, we'll discuss some of the files and directories you'll find in the top level of the Route Planning starter repo.
Top Level
The starter code for the project can be found here . This code is already loaded into a workspace, and you are not required to download or run the code locally to do the project. However, it may be a good idea to open the repository in a different tab or download the code so you can follow along as you watch the video above or read through the descriptions below. In the repo, you should see the following four directories:
-
**
cmake**This directory contains some
.cmakefiles that are needed for the project to find necessary libraries. You will not need to work with this directory for this project. -
srcThe source code for the project is contained here, and this is where you will be doing all of the project work. See the next classroom concepts more information about the contents of this directory.
-
testThis directory contains unit tests for various exercises, implemented using the Google Test framework. As you are developing your code, it may be helpful to look at the relevant tests in this directory to see the expected results and corresponding code . The code written here can be used to understand how different classes and objects in your work. If your code fails a test, the console message will indicate which is the failing test.
-
thirdpartyThis directory contains third party libraries that have been included with this project. You will not need to work directly with this code.